GtkOverlay: Respect overlay child min size
authorAlexander Larsson <alexl@redhat.com>
Thu, 28 Mar 2013 12:24:04 +0000 (13:24 +0100)
committerAlexander Larsson <alexl@redhat.com>
Thu, 28 Mar 2013 12:32:09 +0000 (13:32 +0100)
Never allocate an overlayed child less than its minimum request.
If the minimum doesn't fit we will gracefully clip via the
widget window.

https://bugzilla.gnome.org/show_bug.cgi?id=696623

gtk/gtkoverlay.c

index d87e9774b4321b409e11404720226ab094781f01..c69e104556f51001561268a13de030b536d9652f 100644 (file)
@@ -372,15 +372,15 @@ gtk_overlay_get_child_position (GtkOverlay    *overlay,
                                 GtkAllocation *alloc)
 {
   GtkAllocation main_alloc;
-  GtkRequisition req;
+  GtkRequisition min, req;
   GtkAlign halign;
   GtkTextDirection direction;
 
   gtk_overlay_get_main_widget_allocation (overlay, &main_alloc);
-  gtk_widget_get_preferred_size (widget, NULL, &req);
+  gtk_widget_get_preferred_size (widget, &min, &req);
 
   alloc->x = main_alloc.x;
-  alloc->width = MIN (main_alloc.width, req.width);
+  alloc->width = MAX (min.width, MIN (main_alloc.width, req.width));
 
   direction = gtk_widget_get_direction (widget);
 
@@ -391,7 +391,7 @@ gtk_overlay_get_child_position (GtkOverlay    *overlay,
       /* nothing to do */
       break;
     case GTK_ALIGN_FILL:
-      alloc->width = main_alloc.width;
+      alloc->width = MAX (alloc->width, main_alloc.width);
       break;
     case GTK_ALIGN_CENTER:
       alloc->x += main_alloc.width / 2 - req.width / 2;
@@ -402,7 +402,7 @@ gtk_overlay_get_child_position (GtkOverlay    *overlay,
     }
 
   alloc->y = main_alloc.y;
-  alloc->height = MIN (main_alloc.height, req.height);
+  alloc->height = MAX  (min.height, MIN (main_alloc.height, req.height));
 
   switch (gtk_widget_get_valign (widget))
     {
@@ -410,7 +410,7 @@ gtk_overlay_get_child_position (GtkOverlay    *overlay,
       /* nothing to do */
       break;
     case GTK_ALIGN_FILL:
-      alloc->height = main_alloc.height;
+      alloc->height = MAX (alloc->height, main_alloc.height);
       break;
     case GTK_ALIGN_CENTER:
       alloc->y += main_alloc.height / 2 - req.height / 2;